From 8a44c227f8d1f8466396326b5efef94e80c62ca8 Mon Sep 17 00:00:00 2001 From: Steven Smith Date: Wed, 27 Sep 2006 16:22:17 +0100 Subject: [PATCH] [HVM] qemu should wait 10ms, rather than 100ms, between running its timers. Signed-off-by: Steven Smith --- tools/ioemu/target-i386-dm/helper2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ioemu/target-i386-dm/helper2.c b/tools/ioemu/target-i386-dm/helper2.c index 4134aade4c..83fc5e8f00 100644 --- a/tools/ioemu/target-i386-dm/helper2.c +++ b/tools/ioemu/target-i386-dm/helper2.c @@ -520,8 +520,8 @@ int main_loop(void) } } - /* Wait up to 100 msec. */ - main_loop_wait(100); + /* Wait up to 10 msec. */ + main_loop_wait(10); if (env->send_event) { env->send_event = 0; -- 2.30.2